home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
apps
/
database
/
ingres04.lzh
/
source
/
gutil
/
min.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1985-01-23
|
208 b
|
17 lines
# include <sccs.h>
SCCSID(@(#)min.c 8.1 12/31/84)
/*
** MIN -- return the minimum of two integers.
**
** Why should I even have to write this????
*/
min(a, b)
int a;
int b;
{
return ((a < b) ? a : b);
}